home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Keyboard / Keyboard Protocols / Undoing.cp < prev    next >
Text File  |  1997-06-28  |  162b  |  15 lines

  1. // Undoing.cp
  2.  
  3. #ifndef Undoing_h
  4. #include "Undoing.h"
  5. #endif
  6.  
  7. void Undoing::UndoOrRedo()
  8.   {
  9.     if ( CanUndo() )
  10.         Undo();
  11.      else
  12.         if ( CanRedo() )
  13.             Redo();
  14.   }
  15.